d576c7df813c647830a4ef07d8d846b2f91ebc52,factory/src/test/java/com/google/auto/factory/AutoFactoryProcessorTest.java,AutoFactoryProcessorTest,publicClass,#,38
Before Change
}
@Test public void publicClass() throws IOException {
ASSERT.about(javaSourcesProcessedWith(new AutoFactoryProcessor()))
.that(ImmutableSet.of(JavaFileObjects.forResource("tests/PublicClass.java")))
.generatesSources(JavaFileObjects.forResource("tests/PublicClassFactory.java"));
}
@Test public void simpleClassCustomName() throws IOException {
After Change
}
@Test public void publicClass() {
ASSERT.about(javaSource())
.that(JavaFileObjects.forResource("tests/PublicClass.java"))
.processedWith(new AutoFactoryProcessor())
.hasNoErrors()
.and().generatesSources(JavaFileObjects.forResource("tests/PublicClassFactory.java"));
}
@Test public void simpleClassCustomName() {